home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / tlxjwpc5.zip / MOBYT.SLT < prev    next >
Text File  |  1990-09-21  |  1KB  |  42 lines

  1. //╔═════════════════════════════════════════════════════════════════════╗
  2. //║ RBBS 17.3A         JW-PC Consulting DataFlex.HST      (608)837-1923 ║
  3. //║ Dual Std HST/V.32/MNP5/V.42     RBBSnet 8:972/2     FIDOnet 1:121/8 ║
  4. //╚═════════════════════════════════════════════════════════════════════╝
  5. //////////////////////////////////////////////////////////////////////////
  6. //Protocol salt file for Telix's external protocols by Jim Wargula
  7. //Last edited (09-21-90)
  8. //used for the DSZ Zmodem MobyTurbo protocol for u/ling and d/ling.
  9. //Edit directory path to DSZ, compile with CS, and
  10. //Install as SCRIPT in Protocol installation section
  11. //////////////////////////////////////////////////////////////////////////
  12.  
  13. str dsz[80]  =
  14.   "c:\util\DSZ port ";                        // edit this path!
  15.  
  16. str upld[31]  =
  17.   " pW1 pB4096 ha sl sz -b -m -rr ";          // edit DSZ switches as required
  18.  
  19. str dnld[31]=
  20.   " pW1 pB4096 ha sl rz -b -m -rr ";          // edit DSZ switches as required
  21.  
  22. str port[1];
  23. //////////////////////////////////////////////////////////////////////////
  24.  
  25. Main ()
  26. {
  27.  itos(get_port(),port);
  28.  if (_ext_filespec == "")
  29.   { strcat(dsz,port);
  30.     strcat(dsz,dnld);
  31.     strcat(dsz,_down_dir);
  32.    }
  33.  else
  34.   { strcat(dsz,port);
  35.     strcat(dsz,upld);
  36.     strcat(dsz,_ext_filespec);
  37.    }
  38.  dos(dsz,0);
  39.  alarm(1);
  40. }
  41. //////////////////////// THE END /////////////////////////////////////////
  42.